home *** CD-ROM | disk | FTP | other *** search
/ Champak 43 / Vol 43.iso / games / superdog.swf / scripts / DefineSprite_1369 / frame_1 / DoAction.as
Encoding:
Text File  |  2007-06-25  |  224 b   |  11 lines

  1. stop();
  2. var noHit = true;
  3. onEnterFrame = function()
  4. {
  5.    if(this.fk.hitTest(_parent._parent.man.fk) and _parent._parent.yinc >= 0)
  6.    {
  7.       _parent._parent.yinc = -20;
  8.       _parent._parent.inAir = true;
  9.    }
  10. };
  11.